pub trait IntFromStr: Sized { fn parse_radix(src: &str, radix: u32) -> Result<Self, ()>; }
An integer type which can be parsed from a string
Parse a type from a string given a radix